From 96e9e0203347a74a07e8d681b6c6012d2f18d427 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 2 Dec 2011 08:40:02 -0800 Subject: [PATCH] tools/libxc: Fix x86_32 build breakage in previous changeset. Signed-off-by: Keir Fraser --- tools/libxc/xc_cpuid_x86.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/libxc/xc_cpuid_x86.c b/tools/libxc/xc_cpuid_x86.c index 939412edc5..1b8da179cc 100644 --- a/tools/libxc/xc_cpuid_x86.c +++ b/tools/libxc/xc_cpuid_x86.c @@ -52,7 +52,7 @@ static void cpuid(const unsigned int *input, unsigned int *regs) "mov %%edx,12(%4)\n\t" "pop %%edx; pop %%ebx\n\t" : "=a" (regs[0]), "=c" (regs[2]) - : "0" (input[0]), "1" (count), "S" (_regs) + : "0" (input[0]), "1" (count), "S" (regs) : "memory" ); #else asm ( -- 2.30.2